home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / EModules / system / debug.e next >
Encoding:
Text File  |  1997-12-03  |  2.3 KB  |  73 lines

  1. /*
  2. **  $VER: debug.e V0.9B
  3. **
  4. **  (C) Copyright 1996-1997 DreamWorld Productions.
  5. **      All Rights Reserved.
  6. */
  7.  
  8. OPT MODULE
  9. OPT EXPORT
  10. OPT PREPROCESS
  11.  
  12. MODULE 'dpkernel/dpkernel','system/register','graphics/screens',
  13.        'exec/libraries','system/misc','files/files','system/modules'
  14.  
  15. /*****************************************************************************
  16. ** This is a list of recognised Debug Messages that can be sent to
  17. ** DebugMessage().  Note that these messages will only be seen if you are
  18. ** running a GMS debugger such as IceBreaker.  For messages that go to
  19. ** ErrCode(), see ERR_* in dpkernel/dpkernel.i.
  20. */
  21.  
  22. CONST DBG_Error            = 0,   /* Simple error message */
  23.       DBG_Formatted        = 1,   /* Formatted (printf style) message */
  24.       DBG_BoldMessage      = 2,   /* Information message */
  25.       DBG_Message          = 3,
  26.       DBG_FreeMemBlock     = 4,
  27.       DBG_Load             = 5,
  28.       DBG_CopyStructure    = 6,
  29.       DBG_AddInputHandler  = 7,
  30.       DBG_RemInputHandler  = 8,
  31.       DBG_a                = 9,
  32.       DBG_AllocBlitter     = 10,
  33.       DBG_FreeBlitter      = 11,
  34.       DBG_AllocBlitMem     = 12,
  35.       DBG_AllocVideoMem    = 13,
  36.       DBG_AllocSoundMem    = 14,
  37.       DBG_AllocAudio       = 15,
  38.       DBG_FreeAudio        = 16,
  39.       DBG_b                = 17,
  40.       DBG_c                = 18,
  41.       DBG_FindGMSTask      = 19,
  42.       DBG_MoveToFront      = 20,
  43.       DBG_Switch           = 21,
  44.       DBG_GMSOpened        = 22,
  45.       DBG_GMSClosed        = 23,
  46.       DBG_d                = 24,
  47.       DBG_Get              = 25,
  48.       DBG_SelfDestruct     = 26,
  49.       DBG_Armageddon       = 27,
  50.       DBG_FingerOfDeath    = 28,
  51.       DBG_InitDestruct     = 29,
  52.       DBG_BlankOn          = 30,
  53.       DBG_BlankOff         = 31,
  54.       DBG_GetObjectList    = 32,
  55.       DBG_GetObject        = 33,
  56.       DBG_OpenFile         = 34,
  57.       DBG_Free             = 35,
  58.       DBG_MoveToBack       = 36,
  59.       DBG_TakeDisplay      = 37,
  60.       DBG_ReturnDisplay    = 38,
  61.       DBG_Awaken           = 39,
  62.       DBG_CreateMasks      = 40,
  63.       DBG_SetBobFrames     = 41,
  64.       DBG_AllocMemBlock    = 42,
  65.       DBG_Init             = 43,
  66.       DBG_Display          = 44,
  67.       DBG_Hide             = 45
  68.  
  69. CONST DSTEP = $80000000,
  70.       DHIGH = $40000000,
  71.       DMED  = $20000000,
  72.       DLOW  = 0         /* Default */
  73.